home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / PPC1B3AA.ZIP / DEBUG_.PPS < prev    next >
Text File  |  1996-07-30  |  202b  |  17 lines

  1. ; Demonstration of the debug procedure (library DEBUG.LIB)
  2.  
  3. #ppe
  4. #libpath ..\..\lib
  5. #use debug
  6.  
  7. Int A
  8.  
  9. Cls
  10. Color @X0B
  11.  
  12. For A = 1 To 20
  13.     PrintLn "Hello, world"
  14.     Debug(A)
  15.     Delay 8
  16. Next
  17.